home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / a_utils / ffccflow / ffccflow.lha / ffccc+flow / flow / make_vms.com < prev    next >
Text File  |  1992-07-31  |  521b  |  21 lines

  1. $! This procedure creates FLOW.EXE from its component Fortran
  2. $! source files.
  3. $! It assumes it is being executed in a dedicated [.flow] subdirectory.
  4. $loop1:
  5. $ file = f$search("*.for")
  6. $ if file .eqs. "" then goto end_loop1
  7. $ fortran 'file
  8. $ goto loop1
  9. $end_loop1:
  10. $ library/create flow.olb
  11. $loop2:
  12. $ file = f$search("*.obj")
  13. $ if file .eqs. "" then goto end_loop2
  14. $ library/insert flow 'file
  15. $ goto loop2
  16. $end_loop2:
  17. $ library/delete=flow flow
  18. $ link/exe=flow.exe vmsflow,flow/lib
  19. $ write sys$output "Finished."
  20. $ exit
  21.